mixin content
定義側で@contentと書くと利用できる
code:scss
@mixin hoge() {
// js有効時には非表示にしたい
.js & {
display: none;
@content;
}
}
.div {
@include hoge();
}
.div2 {
@include hoge() {
// この中が@mixinの@contentに追加
font-weight: bold;
}
}
そもそも定義側が全てを決められない時にはcontentを使えば良い